Skip to main content

Deployment

As a TimeBase Server management tool, Web Admin can be deployed and run as a standalone web application or embedded into TimeBase Server. Use Docker Compose to deploy more than one instance of the Web Admin application.

tip

TimeBase Web Admin default credentials: admin/admin.

Supported web browsers:

  • Chrome 72+
  • Firefox 65+
  • Safari

Docker

  1. Install Docker
  2. Start TimeBase Server
  3. Login to registry.deltixhub.com
tip

TimeBase Web Admin default credentials: admin/admin.

# TimeBase Enterprise Edition example
docker run --rm --detach \
--name timebase-admin \
-p 8099:8099 \
registry.deltixhub.com/quantserver.docker/timebase/ws-server:0.5.93

Docker Compose

# TimeBase Enterprise Edition example
docker-compose.yml:

timebase-admin:
image: "registry.deltixhub.com/quantserver.docker/timebase/ws-server:0.5.93"
network_mode: host

docker-compose.override.yml:

timebase-admin:
environment:
- JAVA_OPTS=-Dserver.port=8099 -Dtimebase.url=dxtick://localhost:8011
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8099/ping"]